home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1999 March / EnigmA AMIGA RUN 35 (1999)(G.R. Edizioni)(IT)[!][issue 1999-03].iso / earcd / -archivi / -recent2 / fibonacci.readme < prev    next >
Text File  |  1999-01-01  |  925b  |  19 lines

  1. Short:    A simple CLI program to calculate Fibonacci's numbers, v1.1
  2. Author:   palaste@cc.helsinki.fi (Joona Palaste)
  3. Uploader: palaste@cc.helsinki.fi (Joona Palaste)
  4. Type:     misc/math
  5. Replaces: misc/math/Fibonacci*
  6.  
  7. This simple program calculates Fibonacci's numbers. The numbers were invented
  8. by the Italian mathematician Leonardo Fibonacci in the 13th century. The formula
  9. is:
  10.     f(0)=1, f(1)=1, f(n+2)=f(n)+f(n+1), where n is a non-negative integer.
  11. This program was written in C by me, Joona Palaste. It is Copyrighted by me, but
  12. is freely distributable.
  13. The program calculates any Fibonacci's number that can fit into your memory. If
  14. you have many megabytes, you can calculate even the 20-millionth number,
  15. providing you have the time. =) The result can be written either into StdOut or
  16. into a file on disk.
  17.   This is version 1.1. Version 1.0 displayed large Fibonacci's numbers too
  18. short. This has now been fixed.
  19.